home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Programmer Disk
/
The Programmer Disk (Microforum).iso
/
xpro
/
c
/
pro19
/
poll.c
< prev
next >
Wrap
Text File
|
1987-10-04
|
384b
|
20 lines
#define NOCCARGC /* no argument count passing */
#include stdio.h
#include clib.def
/*
** Poll for console input or interruption
*/
poll(pause) int pause; {
int i;
i = Dcio(255);
if(pause) {
if(i == PAUSE) {
while(!(i = Dcio(255))) ;
if(i == ABORT) exit(0);
return (0);
}
if(i == ABORT) exit(0);
}
return (i);
}